LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IccColorLookupTable16Bit Constructor(Byte[],Byte,UInt16[])
See Also 
Leadtools.ColorConversion Namespace > IccColorLookupTable16Bit Class > IccColorLookupTable16Bit Constructor : IccColorLookupTable16Bit Constructor(Byte[],Byte,UInt16[])



numberOfGridPoints
Array that contains the number of grid points in each dimension.
precision
Precision of data elements in bytes. Must be 02h.
data
Buffer of color lookup table data points. The size of each element is 2 byte. (Hence the "16Bit" in the class name).
Initializes a new IccColorLookupTable16Bit with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal numberOfGridPoints() As Byte, _
   ByVal precision As Byte, _
   ByVal data() As UShort _
)
Visual Basic (Usage)Copy Code
Dim numberOfGridPoints() As Byte
Dim precision As Byte
Dim data() As UShort
 
Dim instance As New IccColorLookupTable16Bit(numberOfGridPoints, precision, data)
C# 
public IccColorLookupTable16Bit( 
   byte[] numberOfGridPoints,
   byte precision,
   ushort[] data
)
C++/CLI 
public:
IccColorLookupTable16Bit( 
   array<byte>^ numberOfGridPoints,
   byte precision,
   array<ushort>^ data
)

Parameters

numberOfGridPoints
Array that contains the number of grid points in each dimension.
precision
Precision of data elements in bytes. Must be 02h.
data
Buffer of color lookup table data points. The size of each element is 2 byte. (Hence the "16Bit" in the class name).

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also